home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 2000 October / Software of the Month - Ultimate Collection Shareware 277.iso / pc / PROGRAMS / UTILITY / WINLINUX / DATA1.CAB / programs_-_include / ASM-ARM / STRING.H < prev    next >
C/C++ Source or Header  |  1999-09-17  |  460b  |  25 lines

  1. #ifndef __ASM_ARM_STRING_H
  2. #define __ASM_ARM_STRING_H
  3.  
  4. /*
  5.  * inline versions, hmm...
  6.  */
  7.  
  8. #define __HAVE_ARCH_STRRCHR
  9. extern char * strrchr(const char * s, int c);
  10.  
  11. #define __HAVE_ARCH_STRCHR
  12. extern char * strchr(const char * s, int c);
  13.  
  14. #define __HAVE_ARCH_MEMCPY
  15. #define __HAVE_ARCH_MEMMOVE
  16. #define __HAVE_ARCH_MEMSET
  17.  
  18. #define __HAVE_ARCH_MEMZERO
  19. extern void memzero(void *ptr, int n);
  20.  
  21. extern void memsetl (unsigned long *, unsigned long, int n);
  22.  
  23. #endif
  24.  
  25.